aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/[id]/loading.module.css
blob: a9feceb6cb1905f717f0a5b77f2cb4626b0a4d8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.Main {
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.LoadingContainer {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 8px solid;
	border-color: #f4f4f4 #0000;
	animation: s1 1s infinite;
}

@keyframes s1 {
	to {
		transform: rotate(0.5turn);
	}
}